home *** CD-ROM | disk | FTP | other *** search
- #include "String.h"
-
- RJS_String RJS_String::operator / ( char ch) const
- {
- RJS_String temp(*this);
- return temp/=ch;
- }
-
- RJS_String RJS_String::operator / ( const char *s) const
- {
- RJS_String temp(*this);
- return temp/=s;
- }
-
- RJS_String RJS_String::operator / ( const RJS_String &s) const
- {
- RJS_String temp(*this);
- return temp/=s;
- }
-
- RJS_String RJS_String::operator / ( const RJS_StringSearch &ss) const
- {
- RJS_String temp(*this);
- return temp/=ss;
- }
-